ContinueRequestRequest

data class ContinueRequestRequest(requestId: RequestId, url: String?, method: String?, postData: String?, headers: List<HeaderEntry>?)

Represents request frame that can be used with Fetch#continueRequest operation call.

Continues the request, optionally modifying some of its parameters.

See also

Constructors

ContinueRequestRequest
Link copied to clipboard
fun ContinueRequestRequest(requestId: RequestId, url: String? = null, method: String? = null, postData: String? = null, headers: List<HeaderEntry>? = null)

Properties

headers
Link copied to clipboard
val headers: List<HeaderEntry>? = null
If set, overrides the request headers.
method
Link copied to clipboard
val method: String? = null
If set, the request method is overridden.
postData
Link copied to clipboard
val postData: String? = null
If set, overrides the post data in the request.
requestId
Link copied to clipboard
val requestId: RequestId
An id the client received in requestPaused event.
url
Link copied to clipboard
val url: String? = null
If set, the request url will be modified in a way that's not observable by page.

Sources

jvm source
Link copied to clipboard